home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 24
/
Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso
/
Aminet
/
docs
/
help
/
arexxbegin.lha
/
arexx_for_beginners
/
articles_01-10
/
Example3-2.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1995-06-01
|
219 b
|
13 lines
/* Example3-2.rexx */
PARSE ARG Name','Age
IF Name = '' | Age = '' THEN DO
SAY 'You should have put your name and age after the RX Example3-2'
EXIT
END
SAY 'Hi there' Name||'. You say you are' Age' years old.'